body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#chip {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.1s ease;
}

#playButton {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff9800;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#playButton:hover {
    background-color: #ffb74d;
}

